home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / DCLAP 6d / dclap6d / SeqPups / appsrc / autoseq.src / DNA.H < prev    next >
Text File  |  1996-07-05  |  831b  |  23 lines

  1. //    ============================================================================
  2. //    DNA.H                                                            80 columns
  3. //    Reece Hart    (reece@ibc.wustl.edu)                                tab=4 spaces
  4. //    Washington University School of Medicine, St. Louis, Missouri
  5. //    This source is hereby released to the public domain.  Bug reports, code
  6. //    contributions, and suggestions are appreciated (to email address above).
  7. //    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -    -
  8. //    This file contains some simple declarations for DNA.
  9. //    ========================================|===================================
  10.  
  11. #ifndef _H_DNA                                // include this file only once
  12. #define _H_DNA
  13.  
  14. #undef T
  15.  
  16. enum    base_t
  17.     { A, C, G, T, X };
  18.  
  19. static const char DNA_BASES[] = "ACGTX";
  20. static const uint NUM_BASES = 4;
  21.  
  22. #endif                                        // conditional inclusion
  23.